home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
online
/
motor.EXE
/
DOSYA.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-10-04
|
133b
|
11 lines
uses crt;
var
f1,f2 :text;
s:string;
begin
readln(s);
assign(f1,'dosya.dat');
rewrite(f1);
writeln(f1,s);
close(f1);
end.